Get Item

Request
path Parameters
id
required
string
Responses
200

Ok

get/items/{id}
Request samples

dataset.items.get(item_id='item_id')

# 
# Get Item object
# 
# **Prerequisites**: You must be in the role of an *owner* or *developer*.
# 
# :param str filepath: optional - search by remote path
# :param str item_id: optional - search by id
# :param bool fetch: optional - fetch entity from platform, default taken from cookie
# :param bool is_dir: True if you want to get an item from dir type
# :return: Item object
# :rtype: dtlpy.entities.item.Item
# 
# 
Response samples
application/json
{
  • "id": "string",
  • "url": "string",
  • "datasetId": "string",
  • "dir": "string",
  • "filename": "string",
  • "name": "string",
  • "type": "file",
  • "spec": "MasterItemSpec",
  • "hidden": true,
  • "metadata": {
    },
  • "createdAt": "2019-08-24T14:15:22Z",
  • "dataset": "string",
  • "creator": "string",
  • "description": "string",
  • "signedStream": "string",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "string",
  • "annotationsCount": 0,
  • "annotated": true,
  • "stream": "string",
  • "thumbnail": "string",
  • "annotations": "string",
  • "srcItem": "string",
  • "srcDataset": "string"
}